-
### Is there an existing issue for this?
- [X] I have searched the existing issues
### New Tool Description
Focuses on technical interview preparation with well-structured courses and challenges.
…
-
Two Number Sum
Solution Python:
```python
def twoNumberSum(array, targetSum):
for i, n in enumerate(array):
if (targetSum - n) in array[i+1:]:
return [n, targetSum-n]
return []
````
-
Well, yeah, the title is self explanatory
you know, algoexpert is all about technical coding interviews in which you need to code, and i am pretty sure some people dont prefer the online dev enviro…
-
-
https://scrimba.com/
https://www.freecodecamp.org/
https://www.lynda.com/portal/sip?org=mississauga.ca&triedlogout=true
https://www.w3schools.com/
https://www.hackerrank.com/dashboard
https://lee…
-
HackerRank, AlgoExpert, CodeWars.
Safari, Firefox.
-
Study Algorithm from algoexpert.io
-
**What is your goal?**
Do one DSA question from algoexpert per day
### Steps to achieve the goal (not required)
- [ ] OPen a question
- [ ] Solve the problem on algoexpert and make a tweet …
-
### While running Download PDF, it stucks with the first one.
Downloading pdf: 1 Palindrome Check
Traceback (most recent call last):
File "C:\Users\capar\Desktop\Nuova cartella (2)\algoexpert-…
-
### Client Sever Architecture
- 웹 서비스에서 클라이언트는 웹 브라우저이다.
- 도메인 이름을 입력하면 DNS 서버에 요청을 보내어 해당 도메인 네임의 IP 주소를 얻어온다.
- 이 IP 주소로 서버에 요청을 보내는 것이다.
- dig 명령어를 통해서 도메인 이름에 해당하는 ip 주소를 알 수 있다.
~~~bash
$ …