Add 2 python questions

This commit is contained in:
abregman 2019-12-03 12:05:47 +02:00
parent deece0073a
commit 1a363bf3bc

View File

@ -2,7 +2,7 @@
:information_source:  This repository contains interview questions on various DevOps and SRE related topics
:bar_chart:  There are currently **562** questions
:bar_chart:  There are currently **565** questions
:books:  To learn more about DevOps check the resources in [DevOpsBit.com](https://devopsbit.com)
@ -2413,6 +2413,10 @@ def is_unique4(l:list) -> bool:
<summary>How to check how much time it took to execute a certain script or block of code?</summary><br><b>
</b></details>
<details>
<summary>Find all the permutations of a given string</summary><br><b>
</b></details>
##### Common Algorithms Implementation
<details>
@ -2436,6 +2440,10 @@ with open('file.txt', 'w') as file:
<summary>How to reverse a file?</summary><br><b>
</b></details>
<details>
<summary>Sum all the integers in a given file</summary><br><b>
</b></details>
#### Regex
<details>