https://github.com/b-coimbra/asp-vb-net-coding-challenges
https://github.com/b-coimbra/asp-vb-net-coding-challenges
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/b-coimbra/asp-vb-net-coding-challenges
- Owner: b-coimbra
- Created: 2025-05-07T23:00:22.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-05-12T14:48:28.000Z (5 months ago)
- Last Synced: 2025-06-05T02:32:35.009Z (4 months ago)
- Language: Visual Basic .NET
- Size: 32.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ASP VB.NET Coding Challenges
Included in this repo are the following code challenges:
## Challenge 1
Write some code that will accept an amount and convert it to the
appropriate string representation.
Example:
Convert 2523.04
to `"Two thousand five hundred twenty-three and 04/100
dollars"`## Challenge 6
Please implement a function that checks whether a positive number is a palindrome or not. For
example, 121 is a palindrome, but 123 is not.