reyadussalahin
92a302deec
added cumulative sum for list
sometimes we need to calculate cumulative sum for a list as follows:
```
def get_cumulative_sum(num_list: List[int]) -> List[int]:
cumulative_sum = [0] * len(num_list)
for i, v in enumerate(num_list):
cumulative_sum[i] = v + (0 if i == 0 else cumulative_sum[i-1])
return cumulative_sum
```
but it can be easily done with `itertools.accumulate` as follows:
```
cumulative_sum = list(itertools.accumulate(<list>))
```
3 years ago
Jure Šorn
f4d5399d2d
Updated remove_links.py script
3 years ago
Jure Šorn
f3ea09fe8b
Regex
3 years ago
Jure Šorn
52abd7b82b
Changed date
3 years ago
Jure Šorn
a658334dfe
Regex, Format, Struct, Threading
3 years ago
Jure Šorn
606208ac68
Web, Profiling
3 years ago
Jure Šorn
cab456867b
OS commands, SQLite, Bytes
3 years ago
Jure Šorn
3ab66cd3aa
Updated a link to text file
3 years ago
Jure Šorn
e2cdb93ff6
Struct, Array, Memoryview, Plot
4 years ago
Jure Šorn
ead33624a3
Introspection
4 years ago
Jure Šorn
05ea5c02dc
Introspection
4 years ago
Jure Šorn
d1bdde452d
Numbers
4 years ago
Jure Šorn
ce3261bed8
Numbers
4 years ago
Jure Šorn
41ce7f02e1
Pygame
4 years ago
Jure Šorn
f57188c665
Bytes
4 years ago
Jure Šorn
10d1b9bcfe
CSV
4 years ago
Jure Šorn
316e0405c3
Exceptions
4 years ago
Jure Šorn
43278567f4
Plotly
4 years ago
Jure Šorn
dca84f5614
Pandas
4 years ago
Jure Šorn
1307034f23
Updated plots
4 years ago
Jure Šorn
10845e905f
Updated plots
4 years ago
Jure Šorn
38e1f92f79
Updated plots
4 years ago
Jure Šorn
940228a05b
Cleanup of web/update_plots.py
4 years ago
Jure Šorn
2e494b1de3
Renamed Path to Paths
4 years ago
Jure Šorn
dea8327eca
String, Regex, Format, Duck types, Pygame
4 years ago
Jure Šorn
031875e7c1
Inline, Struct, Threading
4 years ago
Jure Šorn
02563bb7e0
Fixed CSV table
4 years ago
Jure Šorn
d420693d48
Image
4 years ago
Jure Šorn
a56efa9662
Map, copy, struct
4 years ago
Jure Šorn
ca15335ef2
Math, CSV, SQLite, Threading, NumPy, Synthesizer
4 years ago
Jure Šorn
9e40184dc6
Toc, List, Threading, Web, Synthesizer, Pygame
4 years ago
Jure Šorn
eca5914254
Arguments, Profile, Animation, Synthesizer
4 years ago
Jure Šorn
f51e8307ac
Random, Datetime, Threading
4 years ago
Jure Šorn
d874635756
Introspection, Pygame
4 years ago
Jure Šorn
f4f5fb122c
Threading, Introspection
4 years ago
Jure Šorn
b4a54daa7e
List, String, Numbers, Curses, Scraping
4 years ago
Jure Šorn
bcf02820a0
Updated index
4 years ago
Jure Šorn
6bb4a63b57
Coroutines
4 years ago
Jure Šorn
e257b7b3a1
Coroutines
4 years ago
Jure Šorn
ac999283ee
Tuple, Curses, Appendix
4 years ago
Jure Šorn
29e7600af7
Updated remove_links.py script
4 years ago
Jure Šorn
b939b02420
Datetime
4 years ago
Jure Šorn
54d2c3f369
Random
4 years ago
Jure Šorn
8e007a7e17
Profiling
4 years ago
Jure Šorn
a8bd8445b3
Basic script template
4 years ago
Jure Šorn
1ceb7327b6
Image
4 years ago
Jure Šorn
d7d84eb560
Tuple
4 years ago
Jure Šorn
e7b09d6723
Contents
4 years ago
Jure Šorn
c2bb568ec9
Pandas
4 years ago
Jure Šorn
74644c24f1
Exceptions
4 years ago