首页
AI Coding
NEW
沸点
课程
直播
活动
AI刷题
APP
插件
搜索历史
清空
创作者中心
写文章
发沸点
写笔记
写代码
草稿箱
创作灵感
查看更多
会员
登录
注册
二十六画生的博客
掘友等级
大数据研发工程师
|
某头部大厂
技术、旅行、低调
获得徽章 0
动态
文章
专栏
沸点
收藏集
关注
作品
赞
47
文章 47
沸点 0
赞
47
返回
|
搜索文章
二十六画生的博客
大数据研发工程师 @某头部大厂
·
2年前
关注
Hive cross join ,结果是笛卡尔积,不能写on字段
Hive cross join ,结果是笛卡尔积,不能写on字段,1 2 on报错 3 t2 cross join t1 end...
0
评论
分享
二十六画生的博客
大数据研发工程师 @某头部大厂
·
3年前
关注
Java的<< >> >>> 的正负数 情况
正数的补码与原码一致,负数的补码与原码不同,Java中的<< / >>/>>>均是对补码操作(java中存储的也只是补码),如果补码是负数,需要再转换为原码才是真实的负数值...
0
评论
分享
二十六画生的博客
大数据研发工程师 @某头部大厂
·
3年前
关注
Hive case when+group by组合使用的问题
0 源表 1 报错,因为没有通过聚合或别名或常量生成新的字段.【5正确】 2 正确 3 正确 4 正确 5 正确...
0
评论
分享
二十六画生的博客
大数据研发工程师 @某头部大厂
·
3年前
关注
Hive中2列多行转成多列1行
转换成: 方法1: sum(case when...) 2 方法2: sum(map['']) 方法1不带sum的结果,与方法2不带sum的结果 相同,如下:...
1
评论
分享
二十六画生的博客
大数据研发工程师 @某头部大厂
·
3年前
关注
Hive中2列多行转成多列1行的问题?
select --case --when month = '01' THEN sum_qty --end as '01', --SqlParseException: Sql...
0
评论
分享
二十六画生的博客
大数据研发工程师 @某头部大厂
·
3年前
关注
Hive concat_ws/collect_set/sort_array/array_contains/str_to_map/map_keys用法
select concat_ws(',', 1, 2, null, 3), --1,2,3 concat_ws(1, 2, null,...
0
评论
分享
二十六画生的博客
大数据研发工程师 @某头部大厂
·
3年前
关注
单链表反转 Java 《剑指offer》,Leetcode 206. Reverse Linked List
Given the head of a singly linked list, reverse the list, and return the reversed list...
0
评论
分享
二十六画生的博客
大数据研发工程师 @某头部大厂
·
3年前
关注
LeetCode 259. 3Sum Smaller 三数之和比target小的triplet有多少
一起养成写作习惯!这是我参与「掘金日新计划 · 4 月更文挑战」的第13天,点击查看活动详情。 Given an array of n integers nums and ...
0
评论
分享
二十六画生的博客
大数据研发工程师 @某头部大厂
·
3年前
关注
Leetcode 240. Search a 2D Matrix II [某二维数组从左往右升序,从上往下升序,查找某个值是否存在,存在则返回true,反之返回
Write an efficient algorithm that searches for a value target in an m x n integer matr...
0
评论
分享
二十六画生的博客
大数据研发工程师 @某头部大厂
·
3年前
关注
Leetcode 146. LRU Cache-阿里面试题-实现LRU---LinkedList
Design a data structure that follows the constraints of a Least Recently Used (LRU) ca...
0
评论
分享
二十六画生的博客
大数据研发工程师 @某头部大厂
·
3年前
关注
Leetcode 83. Remove Duplicates from Sorted List-从有序链表中删除重复节点,重复的节点只保留一个
Given the head of a sorted linked list, delete all duplicates such that each element a...
0
评论
分享
二十六画生的博客
大数据研发工程师 @某头部大厂
·
3年前
关注
Leetcode 82. Remove Duplicates from Sorted List II--删除链表中的重复节点,重复的节点均删除掉
Given the head of a sorted linked list, delete all nodes that have duplicate numbers, ...
0
评论
分享
二十六画生的博客
大数据研发工程师 @某头部大厂
·
3年前
关注
Leetcode 234. Palindrome Linked List--判断是否是回文链表,返回中间节点,反转链表
Given the head of a singly linked list, return true if it is a palindrome. Example 1: ...
0
评论
分享
二十六画生的博客
大数据研发工程师 @某头部大厂
·
3年前
关注
Leetcode 237. Delete Node in a Linked List-删除链表的指定节点,不给链表的头节点
Write a function to delete a node in a singly-linked list. You will not be given acces...
0
评论
分享
二十六画生的博客
大数据研发工程师 @某头部大厂
·
3年前
关注
Leetcode 116. Populating Next Right Pointers in Each Node-完全二叉树层次遍历后放入队列链表-Queue
一起养成写作习惯!这是我参与「掘金日新计划 · 4 月更文挑战」的第6天,点击查看活动详情。 You are given a perfect binary tree whe...
0
评论
分享
二十六画生的博客
大数据研发工程师 @某头部大厂
·
3年前
关注
Leetcode 328. Odd Even Linked List-奇数位节点放前面,偶数位节点放后面,按照原来的顺序
一起养成写作习惯!这是我参与「掘金日新计划 · 4 月更文挑战」的第5天,点击查看活动详情。 Given the head of a singly linked list,...
0
评论
分享
二十六画生的博客
大数据研发工程师 @某头部大厂
·
3年前
关注
Leetcode 171. Excel Sheet Column Number-Excel的列名转换为具体的数字AB->28,ZY->701
Given a string columnTitle that represents the column title as appear in an Excel shee...
0
评论
分享
二十六画生的博客
大数据研发工程师 @某头部大厂
·
3年前
关注
Leetcode 242. Valid Anagram-判断是否是 相同字母异序词
一起养成写作习惯!这是我参与「掘金日新计划 · 4 月更文挑战」的第3天,点击查看活动详情。 Given two strings s and t, return true ...
0
评论
分享
二十六画生的博客
大数据研发工程师 @某头部大厂
·
3年前
关注
Leetcode 412. Fizz Buzz-蜂鸣器
Given an integer n, return a string array answer (1-indexed) where : answer[i] == "Fiz...
1
评论
分享
下一页
个人成就
文章被点赞
105
文章被阅读
59,837
掘力值
1,567
关注了
0
关注者
10
收藏集
0
关注标签
2
加入于
2021-06-18