- What is Domain-Driven Design?
- Working With Data
- Value Objects
- Data Transfer Objects
- Repositories
- Services
- Actions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def taskOfPairing(freq): | |
| count = 0 | |
| marker = False | |
| for i in freq: | |
| if i != 0: | |
| count += i // 2 | |
| if i % 2 != 0 and marker: | |
| count += 1 | |
| marker = False | |
| elif i % 2 != 0: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Alpine Ajax test</title> | |
| </head> | |
| <body> | |
| <h1>Users API Retrieval Test</h1> |
OlderNewer