https://github.com/walchand-linux-users-group/gambit
Metamorphosis 2k24 GoLang Competition
https://github.com/walchand-linux-users-group/gambit
competition golang metamorphosis2k24
Last synced: 4 months ago
JSON representation
Metamorphosis 2k24 GoLang Competition
- Host: GitHub
- URL: https://github.com/walchand-linux-users-group/gambit
- Owner: Walchand-Linux-Users-Group
- Created: 2024-01-29T14:21:15.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-10T06:49:15.000Z (over 1 year ago)
- Last Synced: 2025-01-06T05:32:44.349Z (6 months ago)
- Topics: competition, golang, metamorphosis2k24
- Language: Go
- Homepage: https://gopherboard.wcewlug.org/
- Size: 1.28 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Gophers' Gambit
Gopher has created a command line application in which there are a few commands that we have to implement to get the **points 🪙** and move up on the leaderboard.
### How to submit?
- If you are using codespace then simply run the executable by using the following command./submit
- If you are developing locally then use git commands and simply push the changes### Commands to implement
- #### Hello
- **Aim**: Print "Hello From Manager"
- **Points**: 0 🪙
- #### Insert
- **Aim**: Insert data into Projects slice
- **Points**: 10 🪙
- #### Cost Of All Project
- **Aim**: Print the sum of the cost of all the Projects
- **Points**: 15 🪙
- **Sample Output**:
1000
- #### List
- **Aim**: Print the information of Projects
- **Points**: 20 🪙
- **Sample Output**:
Index: 0
Project Name: Git
Assigned To: Linus Torvalds
Completion Status: false
Cost: 1000Index: 1
Project Name: K8s
Assigned To: CNCF
Completion Status: false
Cost: 2000
.
.
.
- #### Update
- **Aim**: Update the project data in Projects slice
- **Points**: 25 🪙
- #### Delete
- **Aim**: Delete the project from a particular index from Projects slice
- **Points**: 30 🪙