Skip to content

Instantly share code, notes, and snippets.

View decodeveronikaa's full-sized avatar
🎯
Decoding

Veronika decodeveronikaa

🎯
Decoding
View GitHub Profile
@decodeveronikaa
decodeveronikaa / SRS SBD
Created July 28, 2022 08:23
Software Specification Requirements (SRS) for an AI Spam/Bot Accounts detection on Twitter
A software requirements specification (SRS) is a document that describes what the software will do and how it will be expected to perform. It also describes the functionality the product needs to fulfill all stakeholders (business, users) needs.
@decodeveronikaa
decodeveronikaa / Information technology & IT Ethics
Last active July 20, 2022 20:34
London School of International Business - Software Engineering/ LV4 Diploma
A NO-CODE assignment from LSIB. Module 1 (part of LV4 Diploma in IT)
This video presents the application of Information technology.
Topics:
- Software
- Hardware
- Storage techniques
- Application of AI
import UIKit
var str = "Hello, playground"
import XCTest
/* Return the middle
Write a function that returns the middle element of an array. When array size is even, return the first of the two middle elements.
*/
func middle(_ array: [Int]) -> Int? {