Advertisement
Mubir66

dddd

Aug 22nd, 2019
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.83 KB | None | 0 0
  1. https://pepsized.com/customize-your-google-map-markers/
  2. https://medium.com/@yilmazvolkan/custom-map-marker-8b136212d766
  3. https://www.ipragmatech.com/add-custom-image-in-google-maps-marker-android/
  4. https://github.com/tellmehowblog/Android-Google-Map-Polygon
  5.  
  6.  
  7.  
  8. int[][] arr = new int[n][m];
  9. foreach(int i :indices)
  10. {
  11. for(int r=0;r<n;r++)
  12. arr[r][indices[i][0]]++;
  13.  
  14. for(int c =0;c<m;c++)
  15. arr[indices[i][1]][c]++;
  16. }
  17. int odd=0;
  18. for(int r=0;r<n;r++)
  19. for(int c =0;c<m;c++)
  20. if(arr[r][c]%2=1)
  21. odd++;
  22. return odd;
  23.  
  24. https://medium.com/@rsinghal757/kadanes-algorithm-dynamic-programming-how-and-why-does-it-work-3fd8849ed73d
  25.  
  26. https://www.quora.com/How-should-I-explain-dynamic-programming-to-a-4-year-old/answer/Jonathan-Paulson
  27.  
  28. https://github.com/liyin2015/Algorithms-and-Coding-Interviews?source=post_page-----2ed289925acf----------------------
  29.  
  30. https://medium.com/outco/how-to-solve-sliding-window-problems-28d67601a66
  31.  
  32. https://www.geeksforgeeks.org/centroid-decomposition-of-tree/
  33.  
  34. https://codeforces.com/blog/entry/52492
  35.  
  36. https://www.topcoder.com/community/competitive-programming/tutorials/an-introduction-to-binary-search-and-red-black-trees/
  37.  
  38. https://codeforces.com/blog/entry/19175
  39.  
  40. https://www.quora.com/q/threadsiiithyderabad/Centroid-Decomposition-of-a-Tree
  41.  
  42. https://akshay.jaggi.co/blog/suffix-automata/
  43.  
  44. https://saisumit.wordpress.com/2016/01/26/suffix-automaton/
  45.  
  46. https://medium.com/@iamcrypticcoder/segment-tree-note-1-11245fbf3ed6
  47.  
  48. https://rezwanarefin01.github.io/posts/block-decomposition-01/
  49.  
  50. https://github.com/dmariselli/Ukkonen-Suffix-Tree/blob/master/Ukkonen.java
  51.  
  52. https://www.freecodecamp.org/news/follow-these-steps-to-solve-any-dynamic-programming-interview-problem-cc98e508cd0e/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement