Skip to content

Instantly share code, notes, and snippets.

View Ezeji's full-sized avatar

Franklin Ezeji Ezeji

View GitHub Profile
@Ezeji
Ezeji / RemoveArrayDuplicate.cs
Last active April 12, 2021 20:33
This algorithm focuses on removing array duplicates.
public static int RemoveArrayDuplicate(int[] nums)
{
int arrayLength = 0;
for (int i = 0; i < nums.Length; i++)
{
if (nums[i] == nums[i++])
{
arrayLength = arrayLength + 1;
@Ezeji
Ezeji / README.md
Created February 28, 2021 14:05 — forked from aishwarya8615/README.md
Healthcare Dataset Stroke Data

Dataset Source: Healthcare Dataset Stroke Data from Kaggle.

This dataset is used to predict whether a patient is likely to get stroke based on the input parameters like gender, age, and various diseases and smoking status. A subset of the original train data is taken using the filtering method for Machine Learning and Data Visualization purposes.

About the Data: Each row in the data provides relavant information about a person , for instance; age, gender,smoking status, occurance of stroke in addition to other information Unknown in Smoking status means the information is unavailable. N/A in other input fields imply that it is not applicable.

@Ezeji
Ezeji / DashboardPage.xaml
Created February 12, 2021 12:43
This gist contains code snippets for the DashboardPage which is a top tabbed page from Xamarin Community Toolkit TabView in shell bottom tabbed page(TabBar).
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:xct="http://xamarin.com/schemas/2020/toolkit"
xmlns:yummy="clr-namespace:Xamarin.Forms.PancakeView;assembly=Xamarin.Forms.PancakeView"
x:Name="ProgressDashboard"
Title="Medication Tracker"
x:Class="MedTracker.View.DashboardPage">
@Ezeji
Ezeji / AppShell.xaml
Last active February 12, 2021 12:14
This gist contains code snippets for a typical shell xaml page using a top tabbed page from Xamarin Community Toolkit TabView in a bottom Shell TabBar. The top tabbed page is called DashboardPage.
<?xml version="1.0" encoding="utf-8" ?>
<Shell xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:d="http://xamarin.com/schemas/2014/forms/design"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
FlyoutBehavior="Disabled"
xmlns:local="clr-namespace:MedTracker.View"
mc:Ignorable="d"
x:Class="MedTracker.AppShell">