0706 投递 大疆 数字化产品经理 base 深圳
    0706 投递 格力 用户研究 base 珠海

    • 0706做了测评

    0702 投递 荣耀-解决方案测试工程师
    0702 投递 OPPO 数据分析和软件测试工程师

    0627 投递 shein 数据挖掘工程师 深圳

    • 0707 笔试 一个小时 :::info 请编写一个方法,返回某集合的所有非空子集。 给定一个int数组A和数组的大小int n,请返回A的所有非空子集。保证A的元素个数小于等于20,且元素互异。各子集内部从大到小排序,子集之间字典逆序排序,见样例。 :::

    :::info 在python中最多两次买卖股票后找到最大利润的程序 :::

    1. 买卖股票
    2. class Solution:
    3. def maxProfit(self , prices):
    4. # write code here
    5. first_buy = first_sell = float("-inf")
    6. second_buy = second_sell = float("-inf")
    7. for i in prices:
    8. first_buy = max(first_buy,-i)
    9. first_sell = max(first_sell,first_buy+i)
    10. second_buy = max(second_buy,first_sell-i)
    11. second_sell = max(second_sell,second_buy+i)
    12. return max(0,first_sell,second_sell)
    13. # 返回非空子集 。
    14. # -*- coding:utf-8 -*-
    15. class Subset:
    16. # 返回二维[[],[],[]]
    17. def getSubsets(self, A, n):
    18. # write code here
    19. A.sort(reverse=True)
    20. allset = 2**n
    21. res = []
    22. for i in range(allset):
    23. item = []
    24. for j in range(n):
    25. if i&(2**j):
    26. item.append(A[j])
    27. res.append(item)
    28. res.sort(reverse=True)
    29. return res[:-1]

    0624 投递 中兴 - 战略规划师 -南京 0701 测评
    蔚来 一志愿:数据产品分析师 二志愿:大数据开发工程师 -上海
    一志愿:0705挂
    0623 投递 用友 - 数据分析 -北京

    0621 投递 大华-数据挖掘工程师- 杭州

    • 0627给了笔试,挺难的 c++ 和深度学习的考察比较多。

    515689cebbd9a9858f835e4e35fef36.png
    0620 投递 新浪 - 商业数据分析实习生 - 北京
    0614 投递 南京银行总行 -blue-π